        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #e10600;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #ff4d44;
        }
        
        /* Header Styles */
                header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        /* Headline News */
        .headline-news {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            grid-column: 1 / -1;
        }
        
        .headline-image {
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        
        .headline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .headline-news:hover .headline-image img {
            transform: scale(1.05);
        }
        
        .headline-content {
            padding: 25px;
            position: relative;
        }
        
        .headline-badge {
            background: #e10600;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            top: -15px;
            left: 25px;
        }
        
        .headline-content h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #1e1e1e;
        }
        
        .headline-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 20px;
            text-align: center;
        }
        
        .read-more {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .read-more:hover {
            background: #ff4d44;
            color: white;
        }
        
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            grid-column: 1 / 2;
        }
        
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1e1e1e;
        }
        
        .news-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .news-date {
            color: #888;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Tags */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .tag {
            background: #f0f0f0;
            color: #666;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: background 0.3s;
            cursor: pointer;
        }
        
        .tag:hover {
            background: #e10600;
            color: white;
        }
        
        /* Commentary Section */
        .commentary {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-top: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .commentary h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
            color: #1e1e1e;
        }
        
        .comment-form {
            margin-bottom: 30px;
        }
        
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            resize: vertical;
            min-height: 100px;
            margin-bottom: 10px;
            font-family: inherit;
        }
        
        .comment-form button {
            background: #e10600;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .comment-form button:hover {
            background: #ff4d44;
        }
        
        .comments {
            margin-top: 20px;
        }
        
        .comment {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .comment:last-child {
            border-bottom: none;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .comment-author {
            font-weight: 500;
            color: #1e1e1e;
        }
        
        .comment-date {
            color: #888;
            font-size: 0.85rem;
        }
        
        .comment-content {
            color: #555;
            margin-bottom: 10px;
        }
        
        .comment-actions {
            display: flex;
            gap: 15px;
        }
        
        .comment-action {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #888;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .comment-action:hover {
            color: #e10600;
        }
        
        /* Reactions */
        .reactions {
            display: flex;
            gap: 15px;
            margin: 15px 0;
        }
        
        .reaction {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background: #f0f0f0;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .reaction:hover {
            background: #e0e0e0;
        }
        
        .reaction.active {
            background: #e10600;
            color: white;
        }
        
        /* Sidebar */
        .sidebar {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }
        
        .sidebar h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
            color: #1e1e1e;
        }
        
        .upcoming-events {
            list-style: none;
        }
        
        .upcoming-events li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .upcoming-events li:last-child {
            border-bottom: none;
        }
        
        .event-date {
            font-weight: bold;
            color: #e10600;
            display: block;
        }
        
        /* Tag Cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .tag-cloud .tag {
            background: #f0f0f0;
            color: #666;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.3s;
            cursor: pointer;
        }
        
        .tag-cloud .tag:hover {
            background: #e10600;
            color: white;
        }
        
        /* Popular Discussions */
        .discussions {
            margin-top: 20px;
        }
        
        .discussion {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .discussion:last-child {
            border-bottom: none;
        }
        
        .discussion-title {
            font-weight: 500;
            color: #1e1e1e;
            margin-bottom: 5px;
        }
        
        .discussion-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.85rem;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                grid-column: 1;
                grid-row: 3;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 600px) {
            .headline-content h2 {
                font-size: 1.8rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
        }